ExportsApi

interface ExportsApi

Functions

createExport
Link copied to clipboard
@POST(value = exports)
abstract suspend fun createExport(@Body() exportCreateDto: ExportCreateDto): Response<ExportCreateResponseDto>
Export documents This API call allows you to export a set of documents for a user.
getExportById
Link copied to clipboard
@GET(value = exports/{id})
abstract suspend fun getExportById(@Path(value = idid: String): Response<ExportsResponseDto>
Get export status This endpoint provides the ability to periodically poll for the export status.
getExports
Link copied to clipboard
@GET(value = exports)
abstract suspend fun getExports(): Response<List<ExportsResponseDto>>
Get exports This endpoint provides the ability to retrieve the list of exports for a user.